id/email
password
forgot password | create account
about | help | prefs
ReadingBatcode reading practice

 

 

Athenian: Booleansis_equal2

prev  |  next  |  chance

Checking to see if a number is equal to another number

def is_equal(x, y):
    return x == y
Function Call  Return Value
is_equal(3, 5)
is_equal(5, 4)
is_equal(15, 15)

Experiment with this code on Gitpod.io

⬅ Back